import { Request, Response, NextFunction } from 'express';

export const getAll = (req: Request, res: Response, next: NextFunction) => {
    throw new Error('Not implemented');
};

export const getOne = (req: Request, res: Response, next: NextFunction) => {
    throw new Error('Not implemented');
};

export const create = (req: Request, res: Response, next: NextFunction) => {
    throw new Error('Not implemented');
};

export const update = (req: Request, res: Response, next: NextFunction) => {
    throw new Error('Not implemented');
};

export const deleteOne = (req: Request, res: Response, next: NextFunction) => {
    throw new Error('Not implemented');
};
